str = "How are you doing. "

new_str = str.partition("Hello")
print(new_str)

#('How are you doing. ', '', '')